/* ==========================================================================
   SHUCHIT INFOTEK - BRAND INTEGRATED ARTICLE INTERFACE
   ========================================================================== */

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #fdfefe;
    margin: 0;
    padding: 0;
}

/* Container Engine */
.blog-inner-container {
    background-color: #ffffff;
    padding: 5rem 24px 8rem 24px;
    display: flex;
    justify-content: center;
}

.inner-blog-width {
    width: 100%;
    max-width: 820px;
}

/* Premium Hero Image Box (Matching Home Page Section Shadow & Blurs) */
.premium-hero-banner {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 3.5rem;
    box-shadow: 0 25px 60px rgba(3, 7, 18, 0.08);
    border: 1px solid rgba(241, 245, 249, 0.8);
}

.premium-hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Badge Style - Perfectly inherited from Home page 'Welcome to Shuchit' badge */
.premium-pill-tag {
    background: rgba(41, 84, 255, 0.06);
    color: #2954ff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
    border: 1px solid rgba(41, 84, 255, 0.15);
}

/* Main Title - Matches font weight structure of Hero H1 */
.premium-main-title {
    font-size: 3.2rem;
    color: #030712;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

/* Meta Panel updates */
.premium-meta-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1.8rem;
}

.premium-meta-panel span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

/* Unified brand blue icons */
.text-blue {
    color: #2954ff !important;
}

/* Body Text / Typography System */
.premium-article-body {
    font-size: 1.15rem;
    line-height: 1.95;
    color: #334155;
}

.premium-article-body p {
    margin-bottom: 2.2rem;
}

.premium-article-body .premium-lead-paragraph {
    font-size: 1.35rem;
    color: #030712;
    font-weight: 500;
    line-height: 1.85;
    margin-bottom: 3rem;
}

.premium-article-body h2 {
    font-size: 2.1rem;
    color: #030712;
    font-weight: 700;
    margin: 4.5rem 0 1.5rem 0;
    letter-spacing: -0.015em;
}

/* Blockquote block updated to reflect service-box accents */
.premium-quote-card {
    position: relative;
    background-color: #f8fafc;
    border-left: 5px solid #2954ff;
    padding: 2.5rem 3rem;
    margin: 4rem 0;
    border-radius: 0 20px 20px 0;
}

.premium-quote-card p {
    margin: 0;
    font-style: italic;
    color: #030712;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.7;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 3rem;
    color: rgba(41, 84, 255, 0.04);
}

/* Premium Conversion CTA - Synced with CTA section on Home Page */
.premium-cta-card {
    position: relative;
    background: linear-gradient(135deg, #0b0f19 0%, #151d30 100%);
    border-radius: 24px;
    padding: 4.5rem 4rem;
    color: #ffffff;
    margin-top: 6rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(3, 7, 18, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: left;
}

.premium-cta-card h3 {
    color: #ffffff;
    margin: 0 0 1rem 0;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.premium-cta-card p {
    color: #94a3b8;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Button overrides to seamlessly lock into Home.css configs */
.premium-action-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.85rem;
    text-transform: none;
    font-weight: 600;
    padding: 16px 36px !important;
}

/* Responsive Adaptive Layouts */
@media (max-width: 768px) {
    .blog-inner-container { padding-top: 2rem; }
    .premium-hero-banner { border-radius: 16px; margin-bottom: 2.5rem; }
    .premium-main-title { font-size: 2.3rem; }
    .premium-article-body .premium-lead-paragraph { font-size: 1.2rem; }
    .premium-article-body h2 { font-size: 1.65rem; margin-top: 3rem; }
    .premium-cta-card { padding: 3rem 2rem; }
    .premium-cta-card h3 { font-size: 1.75rem; }
    .premium-quote-card { padding: 2rem 1.5rem; }
}